Burp Suite Repeater

Burp Suite Basics

Created: 2022-07-21
Tags: #fleeting


We can take a request captured in the Proxy,

  • edit and resend same request multiple times
  • ideal for any kind of manual poking around at an endpoint

Curl

Alternatively, we could craft requests by hand to build and send requests
much as we would from the CLI (Command Line Interface), using a tool such as cURL

  • curl, to see the response headers for a request as well
$ curl -I -X GET http://harvard.edu/

HTTP/1.1 301 Moved Permanently
Retry-After: 0
Content-Length: 0
Server: Pantheon
Location: https://www.harvard.edu/
1```